home *** CD-ROM | disk | FTP | other *** search
/ Aminet 40 / Aminet 40 (2000)(Schatztruhe)[!][Dec 2000].iso / Aminet / misc / emu / Nostalgia.lha / Nostalgia / Install_Fran軋is < prev    next >
Text File  |  2000-09-16  |  1KB  |  48 lines

  1. ; Nostalgia! 0.9ß installation utility
  2. ;
  3. ;
  4. ; Written by -Hybrid- from MELINA SOFTWORKS
  5. ;
  6.  
  7. ;==================================================================
  8. ;VARIABLES
  9. ;==================================================================
  10. (SET #bienvenue  "Bienvenue dans l'utilitaire d'installation de Nostalgia!")
  11.  
  12. (SET #askinstall "Veuillez sélectionner une destination pour Nostalgia!\n Un tiroir y sera créé")
  13. (SET #aide       "Veuillez sélectionner une destination pour Nostalgia, un tiroir appelé Nostalgia y sera créé (environ 300Ko)")
  14. (SET #merci      "\n\n\n\n\nMerci !")
  15.  
  16. ;==================================================================
  17.  
  18.  
  19. (if (>= (/ @installer-version 65536) 44)
  20.  (
  21.   (effect "center" "radial" $F0F0F0 $8000B9)
  22.   (showmedia "Nostalgia" "Nostalgia.jpg" "upper_center" "none" 0)
  23.  )
  24. )
  25.  
  26. (welcome #bienvenue)
  27.  
  28. (set #installdir
  29.         (askdir
  30.                 (prompt #askinstall)
  31.                 (help #aide)
  32.                 (default @default-dest)
  33.         )
  34. )
  35.  
  36. (copyfiles
  37.     (source "InstallStuff/")
  38.     (dest #installdir)
  39.     (pattern "#?")
  40. )
  41.  
  42. (if !(exists "sys:prefs/env-archive/WarpSNES")
  43.  (makedir "sys:prefs/env-archive/WarpSNES")
  44. )
  45.  
  46. (EXIT #merci (QUIET))
  47.  
  48.